1
2
3
4
5
6
7
8
9 package ca.uhn.cache.exception;
10
11
12 /***
13 * Thrown by the <code>MethodDataSource</code> class when an instance
14 * of <code>IllegalAccessException</code> is captured.
15 *
16 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
17 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:53:03 $ by $Author: bryan_tripp $
18 */
19 public class MethodDataSourceIllegalAccessException extends DataSourceException {
20
21 /***
22 * {@inheritDoc}
23 */
24 public MethodDataSourceIllegalAccessException( IllegalAccessException theCause ) {
25 super( theCause );
26 }
27
28 /***
29 * {@inheritDoc}
30 */
31 public MethodDataSourceIllegalAccessException( String theMessage, IllegalAccessException theCause ) {
32 super( theMessage, theCause );
33 }
34
35 }